pandas map using two columns

28

df['d'] = df.apply(lambda x: some_func(a = x['a'], b = x['b'], c = x['c']), axis=1)

Comments

Submit
0 Comments